home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Headers / bsd / sys / un.h < prev    next >
C/C++ Source or Header  |  1995-02-14  |  872b  |  40 lines

  1. /* 
  2.  * Mach Operating System
  3.  * Copyright (c) 1989 Carnegie-Mellon University
  4.  * All rights reserved.  The CMU software License Agreement specifies
  5.  * the terms and conditions for use and redistribution.
  6.  */
  7. /*
  8.  * HISTORY
  9.  * $Log:    un.h,v $
  10.  * Revision 2.3  89/03/09  22:09:44  rpd
  11.  *     More cleanup.
  12.  * 
  13.  * Revision 2.2  89/02/25  17:57:56  gm0w
  14.  *     Changes for cleanup.
  15.  * 
  16.  */
  17. /*
  18.  * Copyright (c) 1982, 1986 Regents of the University of California.
  19.  * All rights reserved.  The Berkeley software License Agreement
  20.  * specifies the terms and conditions for redistribution.
  21.  *
  22.  *    @(#)un.h    7.1 (Berkeley) 6/4/86
  23.  */
  24.  
  25. #ifndef    _SYS_UN_H_
  26. #define _SYS_UN_H_
  27.  
  28. /*
  29.  * Definitions for UNIX IPC domain.
  30.  */
  31. struct    sockaddr_un {
  32.     short    sun_family;        /* AF_UNIX */
  33.     char    sun_path[108];        /* path name (gag) */
  34. };
  35.  
  36. #ifdef    KERNEL
  37. extern int    unp_discard();
  38. #endif    KERNEL
  39. #endif    _SYS_UN_H_
  40.